home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Most Valuable Games 2
/
Most Valuable Games Volume 2 (MVP Publishing)(August 1995).iso
/
setup
/
ddrive.exe
/
START.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-07-25
|
425b
|
22 lines
cls
echo off
echo This file will copy the game cheat program to your 'C' hard disk.
echo After you run it, you will be given the option of removing it from your
echo hard drive. Just answer 'yes' to the delete question.
choice /c:yn Go ahead with the copy to hard drive?
if errorlevel 2 goto end
if errorlevel 1 goto copy
goto end
:copy
xcopy *.* c:\cheat\
c:
cd \cheat
cheat
cd..
deltree cheat
:end